home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Technotools
/
Technotools (Chestnut CD-ROM)(1993).ISO
/
database
/
do1beta
/
ascii.do
< prev
next >
Wrap
Text File
|
1991-06-28
|
308b
|
12 lines
/*
print a table of ASCII character codes
*/
v = set("newline"); % remember the current newline setting
set("newline",""); % turns off new lines in ? command
for(i=0;i<255;i=i+10) {
for(j=0;j<10;j=j+1)
? i+j," ",chr(i+j)," ";
? "\n";
}
set("newline",v); % set newline to what it was on entry